home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Yahoo Messenger 6.xpl < prev    next >
Text File  |  2001-11-27  |  1KB  |  35 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="3"
  3. "COUNT"="1"
  4. "UIPATH"="Internet\Instant Messaging\Yahoo Messenger"
  5. "NAME"="Application Icon"
  6. "VERSION"="1.02"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Icon File"
  9. "DATA 1"="Icon Files (*.ico)|*.ico|All Files (*.*)|*.*"
  10. "DESCRIPTION 1"="You can change the icon used by Yahoo! Messenger in its title bars and in the system tray here."
  11. "DESCRIPTION 2"="NOTE #1: The icon must be contained within a Windows Icon (*.ico) file, and must be in the correct format (not a bitmap with a .ico extension)"
  12. "DESCRIPTION 3"="NOTE #2: If you have Yahoo! Messenger open at the moment, you will need to close it so that the changes can take effect."
  13. "DESCRIPTION 4"="NOTE #3: This does not work with the new Yahoo! Messenger 4.x"
  14. "DESCRIPTION 5"="Yahoo! Messenger may be obtained at http://messenger.yahoo.com/."
  15. "AUTHOR"="Xteq Systems (Neil R. Turner)"
  16. "CONTACTURL"="http://www.xteq.com/"
  17. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  18. "COMMENT 1"="Fed up with Yahoo!? Try http://dmoz.org/."
  19.  
  20. sP="HKCR\TypeLib\{F0012D80-989C-11D3-B7C5-0090271D5CA7}\3.0\HELPDIR\@"
  21.  
  22. Sub Plugin_Initialize
  23.  s=RegReadValue(sP)
  24.  t=IniReadValue(s & "\cobrand.ini","ICON","App Icon")
  25.  Call SetUIElement(1,t)
  26. End Sub
  27.  
  28. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  29.  t=GetUIElement(1)
  30.  s=RegReadValue(sP)
  31.  Call IniWriteValue(s & "\cobrand.ini","ICON","App Icon",t)
  32. End Sub
  33.  
  34. Sub Plugin_Terminate 
  35. End Sub